/* CSS Document */

/* ---------- focus ---------- */
.flickerplate {
  position: relative;
  width: 100%;
  height: 700px;
  background: #eee;
  overflow: hidden; margin-top:90px;
}
.flickerplate ul.flicks {
  margin: 0;
  padding: 0;
  width: 10000%;
  height: 100%;
  list-style: none;
}
.flickerplate ul.flicks>li {
  float: left;
  display: table;
  width: 1%;
  height: 100%;
  background-position: center;
  background-size: cover;
}
.flickerplate ul.flicks>li .flick-inner {
  display: table-cell;
  padding: 100px 0 20px;
  height: 100%;
  color: #fff;
  vertical-align: middle;
}

.flickerplate ul.flicks>li .flick-inner .flick-content {
  margin: auto;background:rgba(0,0,0,.2);
  padding: 0 20px;
  max-width: 1120px;
  text-align: center;
}
.flickerplate ul.flicks>li .flick-title {
  font-size: 3em; padding:30px 0; margin:0 50px;
  font-weight: 700; border-bottom:#fff 2px solid;
}
.flickerplate ul.flicks>li .flick-sub-text {
  padding: 20px;
  font-size: 3.2em; 
  line-height: 160%; font-weight:bold;
}

.flickerplate ul.flicks>li .flick-btn {
  padding-top: 64px;
}
.flickerplate ul.flicks>li .flick-btn a {
  position: relative;
  display: inline-block;
  padding: 0 72px 0 36px;
  height: 44px;
  border: 1px solid rgba(255,255,255,0.4);
  border-radius: 4px;
  background: url("../images/flick-more-arrow.png") no-repeat right 36px center;
  font-family: Arial;
  font-size: 14px;
  color: #fff;
  line-height: 44px;
}
.flickerplate ul.flicks>li .flick-btn a:hover {
  border: 1px solid rgba(255,255,255,0.8);
}

.flickerplate .arrow-navigation {
  position: absolute;
  top: 0;
  width: 10%;
  height: 100%;
  overflow: hidden;
  z-index: 10;
}
.flickerplate .arrow-navigation .arrow {
  position: absolute;
  top: 50%;
  display: block;
  width: 50px;
  height: 50px;
  transition: all 0.2s ease-in-out;
}
.flickerplate .arrow-navigation:hover, .flickerplate .arrow-navigation .arrow:hover {
  cursor: pointer;
}
.flickerplate .arrow-navigation.left {
  left: 0%;
}
.flickerplate .arrow-navigation.left .arrow {
  left: 20px;
  background-image: url("../images/flick-arrow-left-light.png");
  background-repeat: no-repeat;
  background-position: center;
  opacity: 0;
}
.flickerplate .arrow-navigation.right {
  right: 0%;
}
.flickerplate .arrow-navigation.right .arrow {
  right: 20px;
  background-image: url("../images/flick-arrow-right-light.png");
  background-repeat: no-repeat;
  background-position: center;
  opacity: 0;
}
.flickerplate .arrow-navigation.left.hover .arrow {
  left: 20px;
  opacity: 1;
}
.flickerplate .arrow-navigation.right.hover .arrow {
  right: 20px;
  opacity: 1;
}

.flickerplate .dot-navigation {
  position: absolute;
  bottom: 30px;
  width: 100%;
  text-align: center;
  z-index: 10; overflow:hidden;
}
.flickerplate .dot-navigation ul {
  list-style: none;
}
.flickerplate .dot-navigation ul li {
  display: inline-block;
}
.flickerplate .dot-navigation .dot {
  margin: 0px 4px;
  width: 50px;
  height: 4px;
  background: rgba(255,255,255,0.7);
  transition: all 0.2s ease-in-out;
}
.flickerplate .dot-navigation .dot:hover {
  background: rgba(6,142,66,1);
  cursor: pointer;
}
.flickerplate .dot-navigation .dot.active {
  background: #068e42;
}

.flickerplate .dot-navigation.left, .flickerplate .dot-navigation.left ul {
  text-align: left;
}
.flickerplate .dot-navigation.right, .flickerplate .dot-navigation.right ul {
  text-align: right;
}
.flickerplate.flicker-theme-dark .arrow-navigation.left .arrow {
  background-image: url("../images/flick-arrow-left-dark.png");
}
.flickerplate.flicker-theme-dark .arrow-navigation.right .arrow {
  background-image: url("../images/flick-arrow-right-dark.png");
}
.flickerplate.flicker-theme-dark .dot-navigation .dot {
  background: rgba(0,0,0,0.2);
}
.flickerplate.flicker-theme-dark .dot-navigation .dot:hover {
  background: rgba(0,0,0,0.6);
}
.flickerplate.flicker-theme-dark .dot-navigation .dot.active {
  background: #000;
}
.flickerplate.flicker-theme-dark ul.flicks li .flick-inner {
  color: #fff;
}
.flickerplate.flicker-theme-dark ul.flicks li .flick-inner .flick-content .flick-sub-text {
  color: #fff;
}
.flickerplate ul.flicks li.flick-theme-dark .flick-inner {
  color: #fff;
}
.flickerplate ul.flicks li.flick-theme-dark .flick-inner .flick-content .flick-sub-text {
  color: #fff;
}
.flickerplate.animate-transform-slide ul.flicks {
  -webkit-perspective: 1000;
  -webkit-backface-visibility: hidden;
  transform: translate3d(0%, 0px, 0px);
  transition: transform 0.6s;
}
.flickerplate.animate-transition-slide ul.flicks {
  position: relative;
  left: 0%;
  transition: left 0.4s ease-in-out;
}
.flickerplate.animate-jquery-slide ul.flicks {
  position: relative;
  left: 0%;
}
.flickerplate.animate-scroller-slide {
  padding-bottom: 0;
  overflow: auto;
}
.flickerplate.animate-scroller-slide ul.flicks {
  position: auto;
}

/* responsive */
@media only screen and (max-width: 1024px) {
  .flickerplate {
    height: 400px; margin-top:50px;
  }

  .flickerplate ul.flicks>li .flick-title {
    font-size: 16px;
  }
  .flickerplate ul.flicks>li .flick-sub-text {
    font-size: 16px; line-height:24px;
  }
  .flickerplate ul.flicks>li .flick-btn {
    padding-top: 48px;
  }
  .flickerplate ul.flicks>li .flick-btn a {
    padding: 0 56px 0 24px;
    height: 36px;
    background: url("../images/flick-more-arrow.png") no-repeat right 24px center;
    font-size: 12px;
    line-height: 36px;
  }
  .flickerplate .dot-navigation { bottom:15px;}
}